home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / int.bas < prev    next >
BASIC Source File  |  1998-04-07  |  180b  |  8 lines

  1. CLS
  2. Input "Enter a number ",number
  3. third = number / 3
  4. Print "You entered: "; number
  5. Print "Your number divided by 3 is "; third
  6. Print "The whole number quotient is: "; Int(third)
  7.  
  8.